home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / Dialog Manager Da shell / DialogManagerDA.Pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1986-11-26  |  14.3 KB  |  492 lines  |  [TEXT/ttxt]

  1. PROGRAM   DialogManagerDA;
  2.  
  3. (* Desk accessory to show the structure of DAs    Beta version 0.9 __ 11/22/86
  4.     by William S. Johnson, with help from the MACincinnati Hacker Group.
  5.     Written in TML Pascal, version 2.0
  6.  
  7. This desk accessory is a shell you can use to understand the structure of DAs and how to use the Dialog
  8. Manager from a desk accessory. It makes use of buttons, ICONs, radio buttons, text boxes, and does
  9. some drawing of its own. Its most useful feature will adjust your MAC to Daylight Savings Time......*)
  10.  
  11. USES MacIntf;
  12.  
  13. CONST    {dialog item list}
  14.         DefButton    = 1;        Chk_On        = 1;    {check on/off radio buttons}
  15.         QuitButton    = 2;        Chk_Off        = 0;
  16.         AboutButton    = 3;
  17.         Tbox        = 4;        CNTL_enable    = 0;    {enable controls}
  18.         TboxII        = 5;        CNTL_disable    = 255;
  19.         RadioBut1    = 6;
  20.         RadioBut2    = 7;        NoStrings    = 3;    { # of global strings }
  21.         RadioBut3    = 8;
  22.         BullsICON    = 9;
  23.         TEnterICON    = 10;
  24.         TimeButton    = 11;
  25.         ResetButton    = 12;
  26.  
  27. TYPE
  28.     EventPointer = ^EventRecord;
  29.     Lptr = ^longint;
  30.     str25 = string[25];            { define a short string to consume less global space }
  31.  
  32.     DAGlobals = record            { Global data. Store a handle to it in Device.dctlStorage }
  33.         Finished :    boolean;
  34.         ButtonNo :    longint;
  35.         Number:        longint;
  36.         NoText :        longint;
  37.         menuHand :    menuHandle;
  38.         StringArray :    array[1..NoStrings] of str25;
  39.     end;
  40.  
  41.     DAGlobalsP = ^DAGlobals;        { define handle to DAGlobals record }
  42.     DAGlobalsH = ^DAGlobalsP;
  43.  
  44.     DeviceControlRec = record        {replace predefined DCtlEntry record in interface files }
  45.         dCtlDriver :    Handle;
  46.         dCtlFlags :    Integer;
  47.         dCtlQueue :    Integer;
  48.         dCtlQhead :    Lptr;
  49.         dCtlQtail :    Lptr;
  50.         dCtlPosition :    longint;
  51.         dCtlStorage :    DAGlobalsH;    {define as handle to global data}
  52.         dCtlRefNum :    integer;
  53.         dCtlCurTicks :    longint;
  54.         dCtlWindow :    GrafPtr;
  55.         dCtlDelay :    integer;
  56.         dCtlEmask :    integer;
  57.         dCtlMenu :    integer;
  58.     end;
  59.  
  60. PROCEDURE ItemActivate (theDialog : DialogPtr;ItemNo, HiliteMode : integer);    { Activate & hilite buttons }
  61. Var
  62.     ItemType: Integer;
  63.     ItemBox:  Rect;
  64.     ItemHdl :  Handle;
  65. Begin
  66.     GetDItem(theDialog,ItemNo,ItemType,ItemHdl,ItemBox);
  67.     HiliteControl(ControlHandle(ItemHdl),HiliteMode);
  68. End;
  69.  
  70. PROCEDURE SetRadioButton (theDialog : DialogPtr; ItemNo, ChkMark : integer); { set on/off radio buttons }
  71. Var
  72.     ItemType: Integer;
  73.     ItemBox:  Rect;
  74.     ItemHdl:  Handle;
  75. Begin
  76.     GetDItem(theDialog,ItemNo,ItemType,ItemHdl,ItemBox);
  77.     SetCtlValue(ControlHandle(ItemHdl), ChkMark);
  78. End;
  79.  
  80. FUNCTION GetTxtValue (theDialog : DialogPtr; ItemNo : Integer): longint;    { get integer from text box }
  81. Var
  82.     ItemType    : Integer;
  83.     ItemBox    : Rect;
  84.     ItemHdl    : Handle;
  85.     theString    : Str255;
  86.     Value    : longint;
  87. begin
  88.     GetDItem(theDialog, ItemNo, ItemType, ItemHdl, ItemBox);
  89.     GetIText(ItemHdl, theString);
  90.     StringToNum (theString, Value);
  91.     GetTxtValue := Value;
  92. end;
  93.  
  94. PROCEDURE HiliteDefButton (theDialog: DialogPtr);
  95. var
  96.     ItemType:    Integer;
  97.     ButtRect:    rect;
  98.     ItemHdl :        Handle;
  99. begin
  100.     PenSize(3,3);                                {set pen size}
  101.     GetDItem(theDialog,1,ItemType,ItemHdl,ButtRect);
  102.     InsetRect(ButtRect,-4,-4);
  103.     FrameRoundRect(ButtRect,28,28);
  104.     PenSize(1,1);                                {reset pen size}
  105. end;
  106.  
  107. PROCEDURE DrawEText (VAR DataRec: DAGlobals);        { put text from Globals in dialog }
  108. Var
  109.     VLoc, counter:    integer;
  110. Begin
  111.     with DataRec do begin
  112.         TextFont(3);    { make Geneva 9 pt. the current font }
  113.         TextSize(9);
  114.         for counter := 1 to NoText do begin
  115.             VLoc := 80 + (counter*14);
  116.             MoveTo(12,VLoc);
  117.             DrawString ( StringArray[counter] );
  118.         end;    {with DataRec do - for counter}
  119.         TextFont(0);    { make Chicago 12 pt. the current font }
  120.         TextSize(12);
  121.     end;
  122. End;
  123.  
  124. PROCEDURE DitlText(VAR DataRec: DAGlobals);    { Draw text and output data in main window }
  125. var
  126.     aString    : str255;
  127. begin
  128.     with DataRec do begin
  129.         if (NoText > 0) then DrawEText (DataRec);
  130.         if (Number>0) then begin        { draw result of multiplication }
  131.             MoveTo(300,76);
  132.             NumToString (Number, aString);
  133.             DrawString (aString);
  134.         end;
  135.     end;
  136. end;
  137.  
  138. PROCEDURE DitlLines;        { draw dotted lines in main window }
  139. var
  140.     Pattrn :        Pattern;
  141. begin
  142.     GetIndPattern(Pattrn,0,4);    {set pen pattern to gray}
  143.     PenPat(Pattrn);
  144.     MoveTo(182,40);            { vertical line }
  145.     Line(0,194);
  146.     MoveTo(300,80);            { horizontal line }
  147.     Line(50,0);
  148.     GetIndPattern(Pattrn,0,1);    {reset pen pattern to black}
  149.     PenPat(Pattrn);
  150. end;
  151.  
  152. PROCEDURE InitDlogStatus(VAR device: DeviceControlRec);    { set buttons, globals, and cursor location }
  153. Begin
  154.     with device do begin
  155.         SetRadioButton(DctlWindow, RadioBut1, Chk_On);
  156.         SetRadioButton(DctlWindow, RadioBut2, chk_off);
  157.         SetRadioButton(DctlWindow, RadioBut3, chk_off);
  158.         ItemActivate (DCtlWindow, ResetButton, CNTL_disable);
  159.         dCtlStorage^^.ButtonNo := 1;
  160.         dCtlStorage^^.NoText := 0;
  161.         dCtlStorage^^.Number := 0;
  162.         SelIText (DCtlWindow, Tbox, 0, 0);        {jumpstart cursor in 1st textbox}
  163.     end;
  164. End;
  165.  
  166. PROCEDURE DoAbout (DlogID    : longint);
  167. Var
  168.     item        : integer;
  169.     ViewRect        : rect;    {size of dialog window}
  170.     DITL_Hdl        : handle;
  171.     AboutDptr    : GrafPtr;
  172. Begin
  173.     SetRect(ViewRect,68,50,444,220);    {dialog box size- lf,tp,rt,bot}
  174.     DITL_Hdl := GetResource('DITL', DlogID);
  175.     if DITL_Hdl <> nil then begin            
  176.         AboutDptr:= NewDialog(Nil,        {Use _NewDialog_ to put up one of 2 different DITLs }
  177.                         ViewRect,     {size of this dialog box}
  178.                         'About Dialog',    {title of this dialog - unused}
  179.                         True,        {dialog visible upon creation}
  180.                         dBoxProc,    {modal type}
  181.                         POINTER(-1),    {make it the frontmost window}
  182.                         False,        {no goAway box in the dialog}
  183.                         0,            {RefCon variable in dialog record}
  184.                         DITL_Hdl);    {handle to the dialog itemlist}
  185.         ModalDialog(nil,item);
  186.         DisposDialog(AboutDptr);
  187.         DetachResource(DITL_Hdl);
  188.     end;
  189. End;
  190.  
  191. PROCEDURE EnterText ( VAR Device: DeviceControlRec);
  192. Var
  193.     LoadDptr            : DialogPtr;
  194.     itemno, ItemType    : integer;
  195.     ItemBox            : Rect;
  196.     ItemHdl            : Handle;
  197.     theString            : Str255;
  198. Begin
  199.     LoadDptr:= GetNewDialog (device.dCtlMenu + 1, Nil, pointer(-1));
  200.     ModalDialog(nil, ItemNo);
  201.     With Device.Dctlstorage^^ do begin
  202.         NoText := NoText + 1;
  203.         GetDItem(LoadDptr, 2, ItemType, ItemHdl, ItemBox);
  204.         GetIText(ItemHdl, theString);
  205.         if (theString = '')
  206.             then NoText := NoText - 1
  207.             else StringArray[NoText] := copy (theString, 1, 25);
  208.         end;
  209.     DisposDialog(LoadDptr);
  210. End;
  211.  
  212. PROCEDURE UpdateDA(VAR device: DeviceControlRec);    { update call - draw window contents }
  213. begin
  214.     with device do begin
  215.         BeginUpdate(DialogPtr(dctlWindow));
  216.         DrawDialog(DialogPtr(dctlWindow));
  217.         DitlLines;
  218.         DitlText(dCtlStorage^^);
  219.         HiliteDefButton (DialogPtr(dctlWindow));
  220.         EndUpdate(DialogPtr(dctlWindow));
  221.     end;
  222. end;
  223.  
  224. PROCEDURE DAactivate(VAR device: DeviceControlRec);        { activate call - put menu on menu bar }
  225. begin
  226.     with device do
  227.         with dCtlStorage^^ do begin
  228.             menuHand^^.menuID := DCtlMenu;
  229.             InsertMenu (menuHand,0);
  230.             DrawMenuBar;
  231.         end;
  232. end;
  233.  
  234. PROCEDURE DAdeactivate(VAR device: DeviceControlRec);   { deactivate - remove menu from menu bar }
  235. begin
  236.     DeleteMenu(Device.DCtlMenu);
  237.     DrawMenuBar;
  238. end;    { of DAdeactivate }
  239.  
  240. PROCEDURE CtlRadioButtons (VAR Device : DeviceControlRec; WhichButton : integer);
  241. Begin
  242.     with device.dctlstorage^^ do begin
  243.         SetRadioButton (Device.DCtlWindow, ButtonNo + 5, chk_off);
  244.         SetRadioButton (Device.DCtlWindow, WhichButton + 5, Chk_On);
  245.         ButtonNo := WhichButton;
  246.     end;
  247. End;
  248.  
  249. PROCEDURE DoDefButton(VAR Device: DeviceControlRec);
  250. Var
  251.     NumOne, NumTwo    : longint;
  252.     BigRec        : rect;
  253. Begin
  254.     with device do begin
  255.         SetRect(BigRec,-999,-999,999,999);
  256.         ItemActivate (DCtlWindow, ResetButton, CNTL_enable);
  257.         NumOne := GetTxtValue(dctlWindow, Tbox);
  258.         NumTwo := GetTxtValue(dctlWindow, TboxII);
  259.         dctlstorage^^.Number := NumOne  * NumTwo;
  260.         EraseRect(BigRec);
  261.         InvalRect(BigRec);    {force update}
  262.     end;
  263. End;
  264.  
  265. PROCEDURE DoResetButton(VAR Device: DeviceControlRec);
  266. Var
  267.     BigRec        : rect;
  268. Begin
  269.     SetRect(BigRec,-999,-999,999,999);
  270.     InitDlogStatus(device);
  271.     EraseRect(BigRec);
  272.     InvalRect(BigRec);    {force update}
  273. End;
  274.  
  275. PROCEDURE DoTimeButton(VAR Device: DeviceControlRec);
  276. Var
  277.     OSErr                : integer;
  278.     DismissItem            : longint;
  279.     TimeAdjust, TimeInSec    : longint;
  280. Begin
  281.     DismissItem := Alert(device.dCtlMenu + 1, nil);
  282.     TimeAdjust := 0;
  283.     case DismissItem of
  284.         2:    TimeAdjust := 3600;
  285.         3:    TimeAdjust := -3600;
  286.         end;
  287.     GetDateTime (TimeInSec);
  288.     OSErr := SetDateTime (TimeInSec + TimeAdjust);
  289. End;
  290.  
  291. PROCEDURE doKeyEvent (VAR Device : DeviceControlRec; EventPtr : EventPointer);
  292. Const        {key codes}
  293.     CmdT    = $74;        Return    = $03;        Zero    = $30;
  294.     CmdR    = $72;        Enter    = $0D;        Nine    = $39;
  295.     CmdQ    = $71;        Tab        = $09;
  296.     CmdB    = $62;        Backspace = $08;
  297. Var
  298.     item, charCode : integer;
  299.     tmpDPtr        : DialogPtr;
  300.     aFlag        : boolean;    { used as dummy variable in calling DialogSelect }
  301.     ButNum        : longint;        { used to set button in CtlRadioButton, & in Delay call }
  302. Begin
  303.     with EventPtr^ do
  304.         with device.dctlstorage^^ do begin
  305.             charCode := BitAnd(message, charCodeMask);
  306.             if BitAnd (modifiers, cmdKey) <> 0
  307.                 then case charCode of        { ====== field allowable command keys ====== }
  308.                     CmdB:    { rotate radio buttons }
  309.                         begin
  310.                             if (ButtonNo = 3)
  311.                                 then ButNum := 1
  312.                                 else ButNum := ButtonNo + 1;
  313.                             CtlRadioButtons (Device, ButNum);
  314.                         end;
  315.                     CmdR:
  316.                         DoResetButton(device);
  317.                     CmdT:
  318.                         DoTimeButton(device);
  319.                     CmdQ: { Quit }
  320.                         Finished := True;
  321.                     otherwise
  322.                         Sysbeep(1);    { ignore all other command keys }
  323.                     end        {of case}
  324.                 else begin                    { ======== handle all other keys ======== }
  325.                     if (charCode >= Zero) and (charCode <= Nine)    { ===allow numeric keys=== }
  326.                         then aFlag := DialogSelect (EventPtr^, tmpDptr, item)
  327.                         else case charcode of    { ===== allow some non-numeric keys===== }
  328.                             Return, Enter:
  329.                                 begin
  330.                                     ItemActivate (Device.DCtlWindow, Defbutton, inButton);
  331.                                     Delay(15, ButNum);
  332.                                     ItemActivate (Device.DCtlWindow, Defbutton, CNTL_enable);
  333.                                     DoDefButton(device);
  334.                                 end;
  335.                             Tab, Backspace:
  336.                                 aFlag := DialogSelect (EventPtr^, tmpDptr, item);
  337.                             otherwise
  338.                                 Sysbeep(1);    { ignore all other keys }
  339.                         end;  { of case charcode - non-numeric keys }
  340.                     end;  { of non-command keys }
  341.         end;  { with device.dctlstorage^^ }
  342. End;
  343.  
  344. PROCEDURE Event(VAR Device    : DeviceControlRec;
  345.                 VAR Block    : ParamBlockRec);
  346. Var
  347.     item, DismissItem    : integer;
  348.     tmpDPtr            : DialogPtr;
  349.     EventPtr            : EventPointer;
  350.     aFlag            : boolean;    { used as dummy variable in calling DialogSelect }
  351.     lastVal            : longint;        { used as dummy variable in DELAY proc }
  352. Begin
  353.     blockMove(@block.csParam[0],@EventPtr,4);
  354.     with device.dctlstorage^^ do begin
  355.         case EventPtr^.what of
  356.             MouseDown:
  357.                 begin
  358.                 if DialogSelect (EventPtr^, tmpDptr, item) then    { process if item is enabled }
  359.                     case Item of
  360.                         Defbutton:
  361.                             DoDefButton(device);
  362.                         Aboutbutton:
  363.                             DoAbout(device.dctlMenu + 1);
  364.                         QuitButton:
  365.                             Finished := True;
  366.                         ResetButton:
  367.                             DoResetButton(device);
  368.                         TimeButton:
  369.                             DoTimeButton(device);
  370.                         BullsICON:
  371.                             DismissItem := Alert(device.dCtlMenu, nil);
  372.                         TEnterICON:
  373.                             If (NoText < NoStrings) then begin
  374.                                 EnterText (device);
  375.                                 DitlText(device.dctlStorage^^);
  376.                             end;
  377.                         RadioBut1:
  378.                             CtlRadioButtons (Device, 1);
  379.                         RadioBut2:
  380.                             CtlRadioButtons (Device, 2);
  381.                         RadioBut3:
  382.                             CtlRadioButtons (Device, 3);
  383.                         otherwise;    { ignore all other mousedowns }
  384.                     end;   { if DialogSelect/case of item hit }
  385.                 end;   { MouseDown case }
  386.             KeyDown:
  387.                 doKeyEvent (device, EventPtr);
  388.             UpdateEvt:
  389.                 UpdateDA(device);
  390.             ActivateEvt:
  391.                 if odd(EventPtr^.modifiers)
  392.                     then DAactivate(device)
  393.                     else DAdeactivate(device);
  394.             otherwise;    { ignore all other events }
  395.         end; { case of what }
  396.     end;   { with EventRecord }
  397. end; { Event Procedure }
  398.  
  399. PROCEDURE Open(VAR Device : DeviceControlRec; VAR Block : ParamBlockRec);
  400. VAR
  401.     TmpPtr:        Ptr;
  402.     WPeek:        WindowPeek;
  403.     ResourceID:    Integer;    {ID to the dialog item list & main reference ID for resources}
  404. BEGIN    {  Open Procedure  }
  405.     ResourceID := $BFE0 + 32 * (-Device.DCtlRefNum);            { Compute main resource ID }
  406.     Device.dCtlMenu := ResourceID;
  407.     if Device.DctlWindow = nil then begin
  408.         Device.DctlStorage :=  DAGlobalsH(NewHandle(132));
  409.         TmpPtr := NewPtr($1000);                { Create hole in the heap under Window record }
  410.         Device.DCtlWindow:= GetNewDialog (ResourceID, Nil, pointer(-1));
  411.         WPeek := pointer(ord(Device.DCtlWindow));
  412.         WPeek^.WindowKind := Device.DCtlRefNum;    {set the WindowKind field to the DA RefNum }
  413.         SetPort(Device.DCtlWindow);
  414.         DisposPtr(TmpPtr);
  415.  
  416.         HLock (Handle (Device.dCtlstorage));
  417.         With Device.dCtlstorage^^ do begin
  418.             InitDlogStatus(device);
  419.             Finished := False;                 { set program terminator to false }
  420.             menuHand := GetMenu (ResourceID);
  421.         end;
  422.         HUnlock(Handle(Device.Dctlstorage));
  423.     end;
  424. END;  { of Open }
  425.  
  426. PROCEDURE Ctl (VAR Device : DeviceControlRec; VAR Block : ParamBlockRec);
  427. CONST
  428.     accEvent        = 64;    accUndo        = 68;    accClear        = 73;
  429.     accRun        = 65;    accCut        = 70;    CmdMenuNo    = 1;
  430.     accCursor    = 66;    accCopy        = 71;    AboutMenuNo    = 3;
  431.     accMenu        = 67;    accPaste        = 72;    QuitMenuNo    = 4;
  432. VAR
  433.     Done    : boolean;     { local pgm terminator - for calling CloseDeskAcc after globals unlocked }
  434.     DPeek    : DialogPeek;
  435. BEGIN { Main body of CTL Procedure }
  436.     BitClr(@Device.dCtlFlags, 5);            { prevent CTL calls until done, since we use modaldialogs }
  437.     SetPort(Device.DCtlWindow);            { Set the current grafport }
  438.     HLock(Handle(Device.DCtlStorage));        { lock DAGlobals down }
  439.     Done := False;                        { set local boolean program terminator }
  440.     with device.dctlStorage^^ do
  441.         with block do begin
  442.             case csCode of
  443.                 accEvent:
  444.                     Event(Device, Block);
  445.                 accRun:
  446.                         begin
  447.                         DPeek := DialogPeek(Device.DCtlWindow);
  448.                         TEIdle (DPeek^.textH);        { blink caret in text box }
  449.                          end;
  450.                 accCursor: ;
  451.                 accMenu:
  452.                         begin
  453.                         case csParam[1] of
  454.                             CmdMenuNo:
  455.                                 DoAbout(device.dctlMenu + 3);
  456.                             AboutMenuNo:
  457.                                 DoAbout(device.dctlMenu + 1);
  458.                             QuitMenuNo:
  459.                                     Finished := True;
  460.                         end;  { case of menu }
  461.                         HiliteMenu(0);
  462.                         end;    { menu case}
  463.                 accUndo:   ;
  464.                 accCut:    ;
  465.                 accCopy:   ;
  466.                 accPaste:  ;
  467.                 accClear:  ;
  468.             end;    { case of csCode }
  469.             Done := Finished;
  470.         end;    { of Block/device.dctlStorage^^ }
  471.     HUnLock(Handle(Device.DCtlStorage));
  472.     BitSet(@Device.dCtlFlags, 5);                {Allow _Control calls again.}
  473.     if Done then CloseDeskAcc(Device.DCtlRefNum);
  474. END;  { of Ctl }
  475.  
  476. PROCEDURE Close(VAR Device: DeviceControlRec;  VAR Block : ParamBlockRec);
  477. BEGIN
  478.     DAdeactivate(device);
  479.     with Device do
  480.         begin
  481.             disposDialog(DialogPtr(dCtlWindow));    { dispose of window }
  482.             ReleaseResource (Handle (DCtlStorage^^.menuHand));
  483.             HPurge(Handle(dCtlDriver));
  484.             dctlWindow := nil;
  485.             disposHandle(Handle(dCtlStorage));        { Release private storage area }
  486.             dctlStorage := nil;
  487.         end;
  488. END;  { of Close }
  489.  
  490. BEGIN     { No main program }
  491. END.
  492.